home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / stdwin / Tools / dirent.h < prev    next >
Text File  |  1995-12-21  |  210b  |  10 lines

  1. /* A hack to compensate the absence of <dirent.h> on BSD systems.
  2.    Remove this file if it bothers you. */
  3.  
  4. #ifdef SYSV
  5. #include "/usr/include/dirent.h"
  6. #else
  7. #include <sys/dir.h>
  8. #define dirent direct
  9. #endif
  10.